home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 2
/
Wayzata's Best of Shareware 2.0 (Windows) (Wayzata Technology)(7112)(1994).bin
/
pc
/
dos
/
games
/
sb51
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-09-06
|
794b
|
26 lines
@echo off
cls
if %1x == x goto HELP
if %2x == x goto HELP
echo This will copy StatTrak files from %1 to %2\STATTRAK
echo Press Ctrl Break to abort or any other key to continue
pause >nul
mkdir %2\STATTRAK
copy %1*.* %2\STATTRAK
cls
echo starting StatTrak for Baseball...
c:
cd c:\STATTRAK
SB
goto END
:HELP
echo StatTrak for Baseball Installation
echo =======================================
echo Usage: INSTALL [source:] [destination:]
echo =======================================
echo Example: INSTALL A: C: - Will install StatTrak files from drive A: to
echo drive C: (C:\STATTRAK).
echo Note: See the README file for the complete program documentation.
echo Type COPY README PRN and press [Enter] to print the documentation.
:END